home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / TOUPPER.C < prev    next >
Encoding:
Text File  |  1980-01-10  |  384 b   |  7 lines

  1. /*
  2. ** return upper-case of c if it is lower-case, else c
  3. */
  4. toupper(c) int c; {
  5.   return(c<='z' && c>='a' ? c-32 : c);
  6.   }
  7.